home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / comm / wnos5src.zip / SERVER.H < prev    next >
Text File  |  1993-07-21  |  717b  |  24 lines

  1. #ifndef _SERVER_H
  2. #define _SERVER_H
  3.  
  4. #ifndef _GLOBAL_H
  5. #include "global.h"
  6. #endif
  7.  
  8. #ifndef _SOCKET_H
  9. #include "socket.h"
  10. #endif
  11.  
  12. /* Permission bits */
  13. #define    FTP_READ        1        /* Read files */
  14. #define    FTP_CREATE        2        /* Create new files */
  15. #define    FTP_WRITE        4        /* Overwrite or delete existing files */
  16. #define AX25_CMD        8        /* AX.25 gateway operation allowed */
  17. #define TELNET_CMD        16        /* Telnet gateway operation allowed */
  18. #define NETROM_CMD        32        /* NET/ROM gateway operation allowed */
  19. #define SYSOP_CMD        64        /* Remote sysop access allowed */
  20. #define EXCLUDED_CMD    128        /* This user is banned from the BBS */
  21.  
  22. int16 userlogin __ARGS((int16 protocol,void *scb,char *ibuf));
  23.  
  24. #endif /* _SERVER_H */